table of contents
GROUPADD(8) | Commandes de gestion du systèm | GROUPADD(8) |
NOM¶
groupadd - Créer un nouveau groupe
SYNOPSIS¶
groupadd [options] groupe
DESCRIPTION¶
The groupadd command creates a new group account using the values specified on the command line plus the default values from the system. The new group will be entered into the system files as needed.
OPTIONS¶
The options which apply to the groupadd command are:
-f, --force
-g, --gid GID
See also the -r option and the GID_MAX description.
-h, --help
-K, --key KEY=VALUE
Example: -K GID_MIN=100 -K GID_MAX=499
Note: -K GID_MIN=10,GID_MAX=499 doesn't work yet.
-o, --non-unique
-p, --password PASSWORD
Note: This option is not recommended because the password (or encrypted password) will be visible by users listing the processes.
Il est nécessaire de vérifier si le mot de passe respecte la politique de mots de passe du système.
-r, --system
The numeric identifiers of new system groups are chosen in the SYS_GID_MIN-SYS_GID_MAX range, defined in login.defs, instead of GID_MIN-GID_MAX.
-R, --root CHROOT_DIR
-P, --prefix PREFIX_DIR
CONFIGURATION¶
The following configuration variables in /etc/login.defs change the behavior of this tool:
GID_MAX (number), GID_MIN (number)
The default value for GID_MIN (resp. GID_MAX) is 1000 (resp. 60000).
MAX_MEMBERS_PER_GROUP (number)
La valeur par défaut est 0, ce qui signifie qu'il n'y a pas de limites pour le nombre de membres dans un groupe.
Cette fonctionnalité (groupe découpé) permet de limiter la longueur des lignes dans le fichier de groupes. Ceci est utile pour s'assurer que les lignes pour les groupes NIS ne sont pas plus grandes que 1024 caractères.
Si vous avez besoin de configurer cette limite, vous pouvez utiliser 25.
Remarque : les groupes découpés ne sont peut-être pas pris en charge par tous les outils (même dans la suite d'outils Shadow). Vous ne devriez pas utiliser cette variable, sauf si vous en avez vraiment besoin.
SYS_GID_MAX (number), SYS_GID_MIN (number)
The default value for SYS_GID_MIN (resp. SYS_GID_MAX) is 101 (resp. GID_MIN-1).
FICHIERS¶
/etc/group
/etc/gshadow
/etc/login.defs
AVERTISSEMENTS¶
Groupnames may begin with lower and upper case letters, digits, underscores, or periods. They may continue with all the aforementioned characters, or dashes. Finally, they can end with a dollar sign. Fully numeric groupnames and groupnames containing only . or .. are disallowed. In regular expression terms: [a-zA-Z0-9_.][a-zA-Z0-9_.-]*[$]?
Groupnames may only be up to 32 characters long.
Vous ne pouvez pas ajouter d'utilisateur à un groupe NIS ou LDAP. Cela doit être effectué sur le serveur correspondant.
If the groupname already exists in an external group database such as NIS or LDAP, groupadd will deny the group creation request.
VALEURS DE RETOUR¶
The groupadd command exits with the following values:
0
2
3
4
9
10
VOIR AUSSI¶
chfn(1), chsh(1), passwd(1), gpasswd(8), groupdel(8), groupmod(8), login.defs(5), useradd(8), userdel(8), usermod(8).
19/04/2024 | shadow-utils 4.6 |